/*
Theme Name: Stichting Vrienden LNE
Description: Child theme van Twenty Twenty-Five voor Stichting Vrienden LNE. Dit thema biedt een moderne, toegankelijke en flexibele basis voor de website van de stichting.
Template: twentytwentyfive
Author: Alex Krebbers
Author URI: https://vriendenlne.nl/
Version: 1.0
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vriendenlne
*/

/* 
 * Custom styles voor Stichting Vrienden LNE
 * Headings: Merriweather (serif), Body: Merriweather Sans
 */

/* CSS Custom Properties voor fonts */
:root {
    --font-heading: 'Merriweather', 'Times New Roman', serif;
    --font-body: 'Merriweather Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --color-link: #a4bf43;
}

/* Body tekst - Merriweather Sans Light 12pt */
body {
    font-family: var(--font-body);
    font-size: 12pt;
    line-height: 1.6;
    font-weight: 300;
}

/* Paragrafen en tekst elementen - Merriweather Sans Light */
p, li, span, div {
    font-family: var(--font-body);
    font-weight: 300;
}

/* Headings - Merriweather (serif) met verschillende groottes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

/* Koptekst groottes volgens style guide */
h1 {
    font-size: 32pt; /* Koptekst 1 */
}

h2 {
    font-size: 24pt; /* Koptekst 2 */
}

h3 {
    font-size: 19pt; /* Koptekst 3 */
}

h4 {
    font-size: 16pt; /* Koptekst 4 */
}

h5 {
    font-size: 14pt; /* Koptekst 5 */
}

h6 {
    font-size: 12pt; /* Koptekst 6 */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hyperlinks - groene kleur #a4bf43 */
a {
    color: var(--color-link);
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: #8aa83a; /* Iets donkerder groen bij hover */
    text-decoration: none;
}

/* Site titel en logo */
.site-title {
    font-family: var(--font-heading);
    font-weight: 400;
}

/* Navigation */
.main-navigation {
    font-family: var(--font-body);
    font-weight: 300;
}

/* Buttons */
.wp-block-button__link {
    font-family: var(--font-body);
    font-weight: 400;
}

/* Code blocks - behoud Fira Code van parent theme */
code, pre {
    font-family: 'Fira Code', monospace;
}

/* Responsive font sizes */
@media (max-width: 768px) {
    h1 { font-size: 28pt; }
    h2 { font-size: 22pt; }
    h3 { font-size: 18pt; }
    h4 { font-size: 16pt; }
    h5 { font-size: 14pt; }
    h6 { font-size: 12pt; }
    
    body {
        font-size: 11pt;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 24pt; }
    h2 { font-size: 20pt; }
    h3 { font-size: 17pt; }
    h4 { font-size: 15pt; }
    h5 { font-size: 13pt; }
    h6 { font-size: 11pt; }
    
    body {
        font-size: 10pt;
    }
}

/* Custom styling voor specifieke elementen */
.site-header {
    /* Header styling kan hier worden toegevoegd */
    font-family: var(--font-body);
    font-weight: 300;
}

.site-footer {
    /* Footer styling kan hier worden toegevoegd */
    font-family: var(--font-body);
    font-weight: 300;
}

/* Block editor aanpassingen */
.wp-block-heading {
    font-family: var(--font-heading);
}

.wp-block-paragraph {
    font-family: var(--font-body);
    font-weight: 300;
}

/* Home page cover block */
@media (max-width: 1200px) {
    .wp-block-cover {
        min-height: 36rem !important;
    }
}

@media (max-width: 860px) {
    .wp-block-cover {
        min-height: 32rem !important;
    }
    
@media (max-width: 576px) {
    .wp-block-cover {
        min-height: 28rem !important;
    }
}